f9d3f57c2e05617f5080534e0ffd2f2c5de24326,android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotificationHelper.java,RNPushNotificationHelper,getScheduleNotificationIntent,#Bundle#,49
Before Change
notificationIntent.putExtra(RNPushNotificationPublisher.NOTIFICATION_ID, notificationID);
notificationIntent.putExtras(bundle);
PendingIntent pendingIntent = PendingIntent.getBroadcast(mApplication, notificationID, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
return pendingIntent;
}
public void sendNotificationScheduled(Bundle bundle) {
After Change
notificationIntent.putExtra(RNPushNotificationPublisher.NOTIFICATION_ID, notificationID);
notificationIntent.putExtras(bundle);
return PendingIntent.getBroadcast(mApplication, notificationID, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
}
public void sendNotificationScheduled(Bundle bundle) {